deno.land / x / fresh@1.1.1 / tests / fixture / routes / books / [id].tsx
12345678910import { PageProps, RouteConfig } from "$fresh/server.ts";
export default function Page(props: PageProps) { return <div>Book {props.params.id}</div>;}
export const config: RouteConfig = { routeOverride: "/books/:id(\\d+)",};
Version Info